home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue48 / Clinic / MonLib.dpr < prev    next >
Encoding:
Text File  |  1999-05-23  |  408 b   |  28 lines

  1. library MonLib;
  2.  
  3. uses
  4. {$ifndef Ver90}
  5.   MonImplU in 'MonImplU.pas',
  6.   ComServ,
  7.   MonLib_TLB in 'MonLib_TLB.pas',
  8. {$endif}
  9.   MonLibU in 'MonLibU.pas',
  10.   MonHelpU in 'MonHelpU.pas',
  11.   MonWndU in 'MonWndU.pas';
  12.  
  13. exports
  14. {$ifndef Ver90}
  15.   DllGetClassObject,
  16.   DllCanUnloadNow,
  17.   DllRegisterServer,
  18.   DllUnregisterServer,
  19. {$endif}
  20.   RegisterClient;
  21.  
  22. {$R *.TLB}
  23.  
  24. {$R *.RES}
  25.  
  26. begin
  27. end.
  28.